home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / Apache Configuration Editor.EXE / httpd.conf-dist-win < prev    next >
Text File  |  1998-09-12  |  9KB  |  236 lines

  1. # This is the main server configuration file. See URL http://www.apache.org/
  2. # for instructions.
  3.  
  4. # Do NOT simply read the instructions in here without understanding
  5. # what they do, if you are unsure consult the online docs. You have been
  6. # warned.  
  7.  
  8. # Originally by Rob McCool
  9.  
  10. # Note: Where filenames are specified, you must use forward slashes
  11. # instead of backslashes. e.g. "c:/apache" instead of "c:\apache". If
  12. # the drive letter is ommited, the drive where Apache.exe is located
  13. # will be assumed
  14.  
  15. # ServerType must be standalone.
  16.  
  17. ServerType standalone
  18.  
  19. #
  20. # The following lists extra modules that can be uncommented to be loaded 
  21. # to enable extra functionality.  See the manual 
  22. # (http://www.apache.org/docs/mod/) for details on the functionality 
  23. # of each module.
  24. #
  25. #LoadModule anon_auth_module modules/ApacheModuleAuthAnon.dll
  26. #LoadModule cern_meta_module modules/ApacheModuleCERNMeta.dll
  27. #LoadModule digest_module modules/ApacheModuleDigest.dll
  28. #LoadModule expires_module modules/ApacheModuleExpires.dll
  29. #LoadModule headers_module modules/ApacheModuleHeaders.dll
  30. #LoadModule proxy_module modules/ApacheModuleProxy.dll
  31. #LoadModule rewrite_module modules/ApacheModuleRewrite.dll
  32. #LoadModule speling_module modules/ApacheModuleSpeling.dll
  33. #LoadModule status_module modules/ApacheModuleStatus.dll
  34. #LoadModule usertrack_module modules/ApacheModuleUserTrack.dll
  35.  
  36.  
  37. # Port: The port the standalone listens to.
  38.  
  39. Port 80
  40.  
  41. # HostnameLookups: Log the names of clients or just their IP numbers
  42. #   e.g.   www.apache.org (on) or 204.62.129.132 (off)
  43. # The default is off because it'd be overall better for the net if people
  44. # had to knowingly turn this feature on.
  45.  
  46. HostnameLookups off
  47.  
  48. # If you wish httpd to run as a different user or group, you must run
  49. # httpd as root initially and it will switch.  
  50. # ServerAdmin: Your address, where problems with the server should be
  51. # e-mailed.
  52.  
  53. ServerAdmin you@your.address
  54.  
  55. # ServerRoot: The directory the server's config, error, and log files
  56. # are kept in
  57.  
  58. ServerRoot "@@ServerRoot@@"
  59.  
  60. # BindAddress: You can support virtual hosts with this option. This option
  61. # is used to tell the server which IP address to listen to. It can either
  62. # contain "*", an IP address, or a fully qualified Internet domain name.
  63. # See also the VirtualHost directive.
  64.  
  65. #BindAddress *
  66.  
  67. # ErrorLog: The location of the error log file. If this does not start
  68. # with /, ServerRoot is prepended to it.
  69.  
  70. ErrorLog logs/error.log
  71.  
  72. # LogLevel: Control the number of messages logged to the error.log.
  73. # Possible values include: debug, info, notice, warn, error, crit,
  74. # alert, emerg.
  75.  
  76. LogLevel warn
  77.  
  78. # The following directives define some format nicknames for use with
  79. # a CustomLog directive (see below).
  80.  
  81. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  82. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  83. LogFormat "%{Referer}i -> %U" referer
  84. LogFormat "%{User-agent}i" agent
  85.  
  86. # The location of the access logfile (Common Logfile Format).
  87. # If this does not start with /, ServerRoot is prepended to it.
  88.  
  89. CustomLog logs/access.log common
  90.  
  91. # If you would like to have an agent and referer logfile uncomment the
  92. # following directives.
  93.  
  94. #CustomLog logs/referer.log referer
  95. #CustomLog logs/agent.log agent
  96.  
  97. # If you prefer a single logfile with access, agent and referer information
  98. # (Combined Logfile Format) you can use the following directive.
  99.  
  100. #CustomLog logs/access.log combined
  101.  
  102. # PidFile: The file the server should log its pid to
  103. PidFile logs/httpd.pid
  104.  
  105. # ScoreBoardFile: File used to store internal server process information.
  106. # Not all architectures require this.  But if yours does (you'll know because
  107. # this file is created when you run Apache) then you *must* ensure that
  108. # no two invocations of Apache share the same scoreboard file.
  109. ScoreBoardFile logs/apache_status
  110.  
  111. # ExtendedStatus controls whether Apache will generate "full" status
  112. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  113. # Off) when the server-status Handler is called. The default is Off.
  114. #
  115. #ExtendedStatus On
  116.  
  117. # ServerName allows you to set a host name which is sent back to clients for
  118. # your server if it's different than the one the program would get (i.e. use
  119. # "www" instead of the host's real name).
  120. #
  121. # Note: You cannot just invent host names and hope they work. The name you 
  122. # define here must be a valid DNS name for your host. If you don't understand
  123. # this, ask your network administrator.
  124. # If your host doesn't have a registered DNS name, enter its IP address here.
  125. # You will have to access it by its address (e.g., http://123.45.67.89)
  126. # anyway, and this will make redirections work in a sensible way.
  127.  
  128. #ServerName new.host.name
  129.  
  130. # Optionally add a line containing the server version and virtual host
  131. # name to server-generated pages (error documents, ftp directory listings,
  132. # mod_status and mod_info output etc., but not SSI generated documents).
  133. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  134. # Set to one of:  On | Off | EMail
  135. ServerSignature on
  136.  
  137. # UseCanonicalName:  (new for 1.3)  With this setting turned on, whenever
  138. # Apache needs to construct a self-referencing URL (a url that refers back
  139. # to the server the response is coming from) it will use ServerName and
  140. # Port to form a "canonical" name.  With this setting off, Apache will
  141. # use the hostname:port that the client supplied, when possible.  This
  142. # also affects SERVER_NAME and SERVER_PORT in CGIs.
  143. UseCanonicalName on
  144.  
  145. # CacheNegotiatedDocs: By default, Apache sends Pragma: no-cache with each
  146. # document that was negotiated on the basis of content. This asks proxy
  147. # servers not to cache the document. Uncommenting the following line disables
  148. # this behavior, and proxies will be allowed to cache the documents.
  149.  
  150. #CacheNegotiatedDocs
  151.  
  152. # Timeout: The number of seconds before receives and sends time out
  153.  
  154. Timeout 300
  155.  
  156. # KeepAlive: Whether or not to allow persistent connections (more than
  157. # one request per connection). Set to "Off" to deactivate.
  158.  
  159. KeepAlive On
  160.  
  161. # MaxKeepAliveRequests: The maximum number of requests to allow
  162. # during a persistent connection. Set to 0 to allow an unlimited amount.
  163. # We reccomend you leave this number high, for maximum performance.
  164.  
  165. MaxKeepAliveRequests 100
  166.  
  167. # KeepAliveTimeout: Number of seconds to wait for the next request
  168.  
  169. KeepAliveTimeout 15
  170.  
  171. # Apache always creates one child process to handle requests. If it
  172. # dies another child process is created automatically. Within the
  173. # child process multiple threads handle incoming requests. The next two
  174. # directives determine the behaviour of the threads and processes.
  175.  
  176. # Don't force a server to exit after it has served some number of requests.
  177. # If you do want server's to exit after they have run for a long time (to
  178. # help the system clean up after the process), please set this to a pretty
  179. # large number - like 10,000. What this will do, is, each child server will
  180. # exit after serving 10,000 requests, and another server will take its place.
  181.  
  182. MaxRequestsPerChild 0
  183.  
  184. # Number of concurrent threads at a time (set the value to more or less
  185. # depending on the responsiveness you want and the resources you wish
  186. # this server to consume).
  187.  
  188. ThreadsPerChild 50
  189.  
  190.  
  191. # Proxy Server directives. Uncomment the following line to
  192. # enable the proxy server:
  193.  
  194. #ProxyRequests On
  195.  
  196. # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  197. # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  198. # Set to one of: Off | On | Full | Block
  199. #ProxyVia on
  200.  
  201. # To enable the cache as well, edit and uncomment the following lines:
  202. # (no cacheing without CacheRoot)
  203.  
  204. #CacheRoot "@@ServerRoot@@/proxy"
  205.  
  206. #CacheSize 5
  207. #CacheGcInterval 4
  208. #CacheMaxExpire 24
  209. #CacheLastModifiedFactor 0.1
  210. #CacheDefaultExpire 1
  211. #NoCache a_domain.com another_domain.edu joes.garage_sale.com
  212.  
  213. # Listen: Allows you to bind Apache to specific IP addresses and/or
  214. # ports, in addition to the default. See also the VirtualHost command
  215.  
  216. #Listen 3000
  217. #Listen 12.34.56.78:80
  218.  
  219. # VirtualHost: Allows the daemon to respond to requests for more than one
  220. # server address, if your server machine is configured to accept IP packets
  221. # for multiple addresses. This can be accomplished with the ifconfig 
  222. # alias flag, or through kernel patches like VIF.
  223.  
  224. # Any httpd.conf or srm.conf directive may go into a VirtualHost command.
  225. # See also the BindAddress entry.
  226.  
  227. #<VirtualHost host.some_domain.com>
  228. #ServerAdmin webmaster@host.some_domain.com
  229. #DocumentRoot /www/docs/host.some_domain.com
  230. #ServerName host.some_domain.com
  231. #ErrorLog logs/host.some_domain.com-error.log
  232. #TransferLog logs/host.some_domain.com-access.log
  233. #</VirtualHost>
  234.  
  235.  
  236.